bump to version 2.6
authorSteven G. Johnson <stevenj@alum.mit.edu>
Mon, 23 Nov 2020 19:18:43 +0000 (14:18 -0500)
committerSteven G. Johnson <stevenj@alum.mit.edu>
Mon, 23 Nov 2020 19:18:43 +0000 (14:18 -0500)
CMakeLists.txt
MANIFEST
Makefile
NEWS.md
utf8proc.h

index cb7d6fa6437d7ec06dee02dd4295a67a3a8f4eb3..59ce0f432dbb7d9d56d3eaa35aab91e6cdf8aa88 100644 (file)
@@ -10,8 +10,8 @@ project (utf8proc C)
 # API version number (defined in utf8proc.h).
 # Be sure to also update these in Makefile and MANIFEST!
 set(SO_MAJOR 2)
-set(SO_MINOR 3)
-set(SO_PATCH 2)
+set(SO_MINOR 4)
+set(SO_PATCH 0)
 
 option(UTF8PROC_INSTALL "Enable installation of utf8proc" On)
 option(UTF8PROC_ENABLE_TESTING "Enable testing of utf8proc" Off)
index 98fc50550ba46a158cd7c198a220656cc99f2820..bcc5304bf163350c53a0b17c704462be8c947189 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -2,8 +2,8 @@ include/
 include/utf8proc.h
 lib/
 lib/libutf8proc.a
-lib/libutf8proc.so -> libutf8proc.so.2.3.2
-lib/libutf8proc.so.2 -> libutf8proc.so.2.3.2
-lib/libutf8proc.so.2.3.2
+lib/libutf8proc.so -> libutf8proc.so.2.4.0
+lib/libutf8proc.so.2 -> libutf8proc.so.2.4.0
+lib/libutf8proc.so.2.4.0
 lib/pkgconfig/
 lib/pkgconfig/libutf8proc.pc
index 9f275319d5704f2818a7e5b8ab373ea41bc31d05..3d4c2fb58cf90a35bc9b9e9ac3ef9fbebe212cf8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -23,8 +23,8 @@ SOFLAG = -Wl,-soname
 # The API version number is defined in utf8proc.h.
 # Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
 MAJOR=2
-MINOR=3
-PATCH=2
+MINOR=4
+PATCH=0
 
 OS := $(shell uname)
 ifeq ($(OS),Darwin) # MacOS X
diff --git a/NEWS.md b/NEWS.md
index 890e4994619fa4bd48497aaa1f7ae1f1f2548909..0f92be55e801f86e71157768edeecc3502ed8532 100644 (file)
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,15 @@
 # utf8proc release history #
 
+## Version 2.6 ##
+
+2020-11-23
+
+ - New `utf8proc_islower` and `utf8proc_isupper` functions ([#196]).
+
+ - Bugfix for manual calls to `grapheme_break_extended` for initial characters ([#205]).
+
+ - Various build and portability improvements.
+
 ## Version 2.5 ##
 
 2019-03-27
@@ -395,3 +405,5 @@ Release of version 1.0.1
 [#167]: https://github.com/JuliaStrings/utf8proc/issues/167
 [#173]: https://github.com/JuliaStrings/utf8proc/issues/173
 [#179]: https://github.com/JuliaStrings/utf8proc/issues/179
+[#196]: https://github.com/JuliaStrings/utf8proc/issues/196
+[#205]: https://github.com/JuliaStrings/utf8proc/issues/205
index c9771923696ec2bb4c73734300db0e096d8020aa..bfc62e4bf70695928e4699b8d93a73e6918ae122 100644 (file)
@@ -71,7 +71,7 @@
 /** The MAJOR version number (increased when backwards API compatibility is broken). */
 #define UTF8PROC_VERSION_MAJOR 2
 /** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
-#define UTF8PROC_VERSION_MINOR 5
+#define UTF8PROC_VERSION_MINOR 6
 /** The PATCH version (increased for fixes that do not change the API). */
 #define UTF8PROC_VERSION_PATCH 0
 /** @} */